خرید بک لینک
I am using Google Timeline chart and want to hire a click function. Simply when I clicked on the colored rectangles or text I want a bootstrap Modal show up. google.charts.load("current", {packages:["timeline"]}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var container = d

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

page1.php

<?php
   echo $first;
   echo $secound;
   echo $third;
   echo $four;
?>
<form>
<input type="text" name="five" value=""></input>
<input type="text" name="six" value=""></input>
<input type="text" name="seven" value=""></input>
</form>
<button class="button">Submit</button>

I want to pass all this 4 php variables and 3 inputs values in form using ajax to the pages called 'page2.php' 'page3.php' when the button is clicked. And i should get back the results from page2 and page3 and display it on page1.php saying like successful.

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

In Outlook I have setup the following code to temporarily display a message. However I caot work out how to pass a variable (aMessageLabel) containing the text to be displayed.

Sub Test()

    Dim aShell
    Set aShell = CreateObject("WScript.Shell")

    aMessageLabel = Chr(34) & "No Emails to be Forwarded!" & Chr(34)

    aShell.Run "mshta.exe vbscript:close(CreateObject(""WScript.shell"").Popup(aMessageLabel,5,""Message""))"

End Sub

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

I want to insert value retued from this table into a table . Direct 'insert into' is not working . How Can i do this

;WITH N(N)AS 
(SELECT 1 FROM(VALUES(1),(1),(1),(1),(1),(1))M(N)),
tally(N)AS(SELECT ROW_NUMBER()OVER(ORDER BY N.N)FROM N,N a)
SELECT N day,datefromparts(@year,@month,N) date , DATENAME(dw,datefromparts(@year,@month,N)) dayname
FROM tally
WHERE N <= day(EOMONTH(datefromparts(@year,@month,1)))

 AND DATEPART(dw,datefromparts(@year,@month,N)) = 5        -- Thursday
 AND DATEPART(d,datefromparts(@year,@month,N)) BETWEEN  @dayFrom AND @dayTo 

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

I need to classify the SMS that we receive in our mobiles into transactional and non-transactional. I tried using naive-bayes for the same. However, due to lack of sufficient training data, my results are not accurate. Can you suggest some other good algorithm or some other processing that can be applied on Naive-Bayes to get this done?

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

I am newbie in Freertos. I have just started working on Freertos, so forgive me if my question is silly. I have got Intel Galileo Gen 2 board, in which I successfully run a demo application of Freertos. Link for the tutorial is here. Now I tried to make my own application. For this I study some Freertos tutorials. Link for the tutorial is here.. After reading this tutorial I have leaed basics of Freertos but I can't figure out how to use use GPIO, UART, SPI etc of my board. There is nothing available on inteet regarding my problem. Is there any library available which I can use for my GPIO, UART, SPI etc in Freertos in Intel Galelio Gen2 or there any other approach to use GPIO, UART, SPI etc?

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

I am new to angular.js. I have two directives in my main.js file and every directive has an input text field in the template. There is a Html page (index.html) where I want to use these directive's text fields with another input text field which is a Html input text field. Now I want whatever input

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

I created a Combo box using Devexpress. I fill the combo box from a database. My question is How to make a Devexpress Combo box shows only non selected items?

So suppose

  • I have a combo box that has the following values (1, 2, 3, 4, 5)
  • I selected value (1)
  • when I add a new row and open the combo box, it should show (2, 3, 4, 5)

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

Is there a way to stream a set of images real time via http using FFMPEG in c#. There are libraries available for FFMPEG in C# such as Accord.Video.FFMPEG which can be used to create video using sequence of Images, but I have no idea whether I can create a video real time and stream it to the client browser using a set of Images.

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

Now, we need to run node app.js on console

If I need to run application permanently, How can we do?

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 22:05

I'm creating an app in AngularJS and ExpressJS and when I try to use dynamic url, with the angular state, it doesn't work properly. It's working when I access directly the URL but only static URLs. server.js var express = require('express'), server = express(), path = require('path'), port = process.env.PORT || 8081; server.use(express.static(__diame)); server.all("/*", function(req, res, next) { res.sendFile(path.join(__diame, 'index.html')); }); server.listen(port); console.l

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 2:34

I would like to send file(typically a pdf or word doc) to a lync or a skype for business user programmatically from a UCMA application. I have tried the approach mentioned in the thread, but I keep getting the error, also mentioned in the thread.

Does anyone have a solution? It looks like the samples provided in the SDK has nothing that talks about file transfer. Please help.

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 2:34

I've been trying to upload a pic to a folder and store its path in the database, my code seems to work correctly, but no it's not, After i click submit button, it goes to a blank page. Using Inspect element, Network option in my browser, when seeing the parameters sent I see correct input from the text fields but for the image, Content-Disposition: form-data; name="myimage"; filename="IMG_8971.JPG" Content-Type: image/jpeg Plus some other weirly looking characters and symbols like : ÿØÿà CONTR

برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 3 خرداد 1396 ساعت: 2:34

Vote count: 0I am working on the comparison of Histogram of oriented gradient (HoG) and Convolutional Neural Network (CNN) for the weed detection. I have two datasets of two different weeds.CNN architecture is 3 layer network.1) 1st dat

برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 2 خرداد 1396 ساعت: 16:50

Vote count: 0I add Left Navigation Back button in collection view controller with code. //Add Navigation Bar navbar.autoresizingMask = [.flexibleWidth, .flexibleBottomMargin, .flexibleRightMargin] navbar.delegate = self UIN

برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 2 خرداد 1396 ساعت: 16:50

Vote count: 0I want to find an expression equivalent to "SELECT SUM (CASE WHEN YEAR (t.WhenIn) = dimDate.year THEN 1 ELSE 0 END) WhenIn, SUM (CASE WHEN YEAR (t.WhenOut) = dimDate.year THEN 1 ELSE 0 END) WhenOut FROM Test t " in DAX. Tha

برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 2 خرداد 1396 ساعت: 16:50

Vote count: 0I have a tab navigation using react native and react-navigation My 5 tabs are too squished on android but look fine for iOS. How do I style the tabs to fit on android? Can I make the tabs horizontally scrollable? I think

برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 2 خرداد 1396 ساعت: 2:02

Vote count: 0I hope the following excerpts will provide an insight into what my question is going to be. These are from http://neuralnetworksanddeepleaing.com/chap3.html"The leaing then gradually slows down. Finally, at around epoch

برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 2 خرداد 1396 ساعت: 2:02

Vote count: -1I have a array like this: [["A1","A2","A3"],["B1","B2","B3"],["C1","C2"]] I want to show this values in picker view. Show before this values I have another array mother of this array. [A,B,C] if I selected A, second picker

برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 2 خرداد 1396 ساعت: 2:02

Vote count: 0I managed to get a WADL by using the org.jboss.resteasy.wadl.ResteasyWadlServlet (http://stackoverflow.com/a/41471710/2528609), but the WADL does not contain the Grammar. The representation nodes also do not contain an eleme

برچسب: نویسنده: استخدام کار تاريخ: دوشنبه 1 خرداد 1396 ساعت: 19:11

Vote count: 0I started recently to customzie one site, but have one issue that dont know how to fix.in Shop page on my URLwhen try to open from smartphone there are too big gap between top, and between product categories i see this: See

برچسب: نویسنده: استخدام کار تاريخ: دوشنبه 1 خرداد 1396 ساعت: 19:11

Vote count: 0The .net Framework SSL stream implementation has the property CipherAlgorithm with the type CipherAlgorithmType. This enumeration includes None and Null. What is the difference between this two values? From the documentation

برچسب: نویسنده: استخدام کار تاريخ: دوشنبه 1 خرداد 1396 ساعت: 19:11

Vote count: 0I am trying to share image using share intent to already installed app, but when i try to share it shows only whtsapp application instead of all the installed apps.can any one help me to get all the installed apps to share m

برچسب: نویسنده: استخدام کار تاريخ: دوشنبه 1 خرداد 1396 ساعت: 13:03

Vote count: 0How should I create face detection web application which capture photo and save when face comes in-front of camera. Which technology currently available to achieve this. Please Help... asked 44 secs agoAngadLet's blo

برچسب: نویسنده: استخدام کار تاريخ: دوشنبه 1 خرداد 1396 ساعت: 13:03

صفحه بندی